home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / libraries / mathlibrary.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  49 lines

  1. #ifndef LIBRARIES_MATHLIBRARY_H
  2. #define LIBRARIES_MATHLIBRARY_H 1
  3. /*
  4. ** mathlibrary.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for mathlibrary.h
  17. */
  18. #ifndef MathIEEEBasePtr
  19. #define MathIEEEBasePtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for mathlibrary.h
  23. */
  24.  
  25.  
  26. #ifndef EXEC_LIBRARIES_H
  27. #include <exec/libraries.h>
  28. #endif
  29.  
  30. STRUCT MathIEEEBase
  31.  
  32.     _Library MathIEEEBase_LibNode 
  33.     STRING MathIEEEBase_reserved SIZE 18  
  34.     ADDRESS   MathIEEEBase_TaskOpenLib 
  35.     ADDRESS   MathIEEEBase_TaskCloseLib
  36.     /*  This structure may be extended in the future */
  37. END STRUCT 
  38. /*
  39. * Math resources may need to know when a program opens or closes this
  40. * library. The functions TaskOpenLib and TaskCloseLib are called when
  41. * a task opens or closes this library. They are initialized to point to
  42. * local initialization pertaining to 68881 stuff if 68881 resources
  43. * are found. To override the default the vendor must provide appropriate
  44. * hooks in the MathIEEEResource. If specified,  these will be called
  45. * when the library initializes.
  46. */
  47.  
  48. #endif  /* LIBRARIES_MATHLIBRARY_H */
  49.